home *** CD-ROM | disk | FTP | other *** search
/ Windows 3-Pak 2 - Disc 2 / Infomagic - Windows 3-Pak Volume 2 (Disc 2 of 3).iso / Telnet-Clients / nt3242a.exe / ae_faq.txt < prev    next >
Text File  |  1999-03-31  |  8KB  |  203 lines

  1. 1.  I am having trouble pasting text into the NetTerm window.
  2.     I am having trouble doing an ascii file transfer.
  3.  
  4.     NetTerm uses two timing values for both paste text and send
  5.     ascii files to a host.  These can be specified by selecting
  6.     the Options|Setup|Global Settings|File Transfer Tab.
  7.     Normally Delay-1 should be 20 and Delay-2 should be 200.
  8.  
  9. 2.  I cannot find my modem in your list of supported modems.
  10.  
  11.     Trying to keep up with all of the available modems and buying each one
  12.     for testing would be very expensive.  We would also suggest that you
  13.     select the TAPI option if your systems supports it.  A source for most
  14.     modem setup strings can be found at:
  15.  
  16.          http://www.spy.net/~dustin/modem/
  17.  
  18. 3.  For the Unix WordPerfect users, from one of our clients:
  19.  
  20.     A hint:  If any other Netterm users inquire about using
  21.     your telnet with WP5.2+ for Unix, ensure they use
  22.     386CONS as the value for the environment variable
  23.     WPTERM52 when using KEYS-WORDPERFECT.  Even though they
  24.     are actually using vt100 emulation, this will ensure the
  25.     system anticipates the correct codes.
  26.  
  27. 4.  I can't get the modem to be silent while dialing, why not?
  28.  
  29.     NetTerm recently changed the way it sets the modem up in order
  30.     to handle some of the newer PCMCIA modems on the market.  If
  31.     your current modem setup sting looks something like:
  32.  
  33.          AT %F1 M0 S11=40 S2=128
  34.  
  35.     change it to:
  36.  
  37.          AT%F1\rATM0\rATS11=40 S2=128
  38.  
  39.     The ATM0 portion of the command is what tells the modem to be
  40.     silent.
  41.  
  42. 5.  Can I use the Transparent print feature on hosts that do not support
  43.     this feature?
  44.  
  45.     Yes, we have added a new menu item under the "File" menu called
  46.     "Formatted Transparent Printing On".  This feature allows limited
  47.     control and formatting of data that is normally sent only to the
  48.     screen to be also sent to the printer using the same options that
  49.     are available to normal transparent print requests.  The following
  50.     two keywords in the netterm.ini control the formatting:
  51.  
  52.          FORMATPRINT_START=y^M
  53.          FORMATPRINT_LINES=39
  54.  
  55.     The FORMATPRINT_START keyword specifies what string should be sent
  56.     to the host to start the printout.  When the formatted transparent
  57.     print option is selected, the internal transparent print logic is
  58.     turned on and the FORMATPRINT_START string is sent to the host to
  59.     indicate that the printing should be started.  The FORMATPRINT_LINES
  60.     keyword specifies the number of lines (line feeds) that should be
  61.     processed as one page.  When this value is reached, a form feed
  62.     will be added to the printer data to force a new page.  Once the
  63.     host has completed sending all the data, the 'Transparent Printing
  64.     Off' menu item should be selected.  This will instruct NetTerm to
  65.     print the data using the options selected in the Options-Setup-
  66.     Global Settings-Printing dialog panel.
  67.  
  68.     Note that since both menu items that control this feature are menu
  69.     items, QuickButtons can be defined to start and stop the transparent
  70.     printing.
  71.  
  72.  
  73. // NetTerm Menu Items
  74. // File Menu
  75. #define IDM_CONNECT                   10000
  76. #define IDM_DISCONNECT                10001
  77. #define IDM_PHONE                     10002
  78. #define IDM_BBSLIST                   10003
  79. #define IDM_SEPARTOR_10004            10004
  80. #define IDM_PRINT                     10005
  81. #define IDM_SETUP                     10006
  82. #define IDM_SPRINT                    10007
  83. #define IDM_SEPARTOR_10008            10008
  84. #define IDM_LOGPRINT                  10009
  85. #define IDM_LOGFILE                   10010
  86. #define IDM_EJECTP                    10011
  87. #define IDM_SEPARTOR_10012            10012
  88. #define IDM_TPON                      10013
  89. #define IDM_TPOFF                     10014
  90. #define IDM_STPON                     10015
  91. #define IDM_SEPARTOR_10015            10016
  92. #define IDM_EXIT                      10017
  93.  
  94. // Edit Menu
  95. #define IDM_SCB                       11001
  96. #define IDM_RCB                       11002
  97. #define IDM_SEPARTOR_11003            11003
  98. #define IDM_RESET                     11004
  99. #define IDM_ERESET                    11005
  100. #define IDM_SBREAK                    11006
  101. #define IDM_LBREAK                    11007
  102. #define IDM_AP                        11008
  103. #define IDM_SEPARTOR_11009            11009
  104. #define IDM_SAVESCREEN                11010
  105. #define IDM_CLEAR                     11011
  106. #define IDM_CLEARS                    11012
  107. #define IDM_SAVEAS                    11013
  108. #define IDM_SEPARTOR_11014            11014
  109. #define IDM_PASTEIPA                  11015
  110. #define IDM_PASTEIP                   11016
  111. #define IDM_MARK                      11017  (Hidden on the menu)
  112.  
  113. // Options Menu
  114. // Setup Main
  115. #define IDM_FONT                      12000
  116. #define IDM_SETTINGS                  12001
  117. #define IDM_ANSIC                     12002
  118. #define IDM_KB1                       12003
  119. #define IDM_DESKTOP                   12004
  120. #define IDM_DBBAR                     12005
  121. #define IDM_PIN                       12006
  122. #define IDM_SETTELNET                 12007
  123. #define IDM_SEPARTOR_12008            12008
  124. // International Video/Keyboard
  125. #define IDM_SS                        12300
  126. #define IDM_AM                        12301
  127. #define IDM_VM                        12302
  128. #define IDM_KM                        12303
  129. #define IDM_KO                        12304
  130. #define IDM_LCD                       12305
  131.  
  132. // Options Tools
  133. #define IDM_FINGER                    12400
  134. #define IDM_RESOLVE                   12401
  135. #define IDM_MYIP                      12402
  136. #define IDM_FTPD                      12403
  137. #define IDM_PRINTER                   12404
  138. #define IDM_FTPC                      12405
  139. // Options Trace
  140. #define IDM_TRACE1                    12501
  141. #define IDM_TRACE2                    12502
  142.  
  143. // Send Menu
  144. #define IDM_SASCII                    906
  145. #define IDM_SKERMIT                   905
  146. #define IDM_SZMODEM                   900
  147.  
  148. // Receive Menu
  149. #define IDM_RASCII                    916
  150. #define IDM_RKERMIT                   915
  151. #define IDM_RZMODEM                   917
  152.  
  153. // Window Menu
  154. #define IDM_NEWWINDOW                 15000
  155. #define IDM_QUICK                     15001
  156. #define IDM_EDITOR                    15002
  157. #define IDM_TITLE                     15003
  158. #define IDM_SAVEXY                    15004
  159. #define IDM_SEPARTOR_15004            15005
  160. #define IDM_HOSTSTART                 15500
  161. #define IDM_HOSTEND                   15549
  162.  
  163. // Help Menu
  164. #define IDM_HELP                      16000
  165. #define IDM_SEPARTOR_16001            16001
  166. #define IDM_ORDERING                  16002
  167. #define IDM_REGISTER                  16003
  168. #define IDM_LEGAL                     16004
  169. #define IDM_SEPARTOR_16005            16005
  170. #define IDM_ABOUT                     16006
  171.  
  172. // Mouse Menu
  173. #define IDM_URL                       17000
  174. #define IDM_PSTRING1                  17001
  175. #define IDM_PSTRING2                  17002
  176. #define IDM_BBSDOOR                   17003
  177. #define IDM_SKEY                      17004
  178. #define IDM_SEPARTOR_17005            17005
  179. #define IDM_MSCB                      17006
  180. #define IDM_MRCB                      17007
  181. #define IDM_MRSCB                     17008
  182. #define IDM_MCLEAR                    17009
  183. #define IDM_MPRINT                    17010
  184. #define IDM_MRESET                    17016
  185. #define IDM_ESCROLL                   17011
  186. #define IDM_MCLEARS                   17017
  187. #define IDM_PSCROLL                   17012
  188. #define IDM_MSAVEAS                   17018
  189. #define IDM_PRINTH                    17013
  190. #define IDM_SHOWCLIP                  17014
  191. #define IDM_SEPARTOR_17019            17019
  192. #define IDM_MPASTEIPA                 17020
  193. #define IDM_MPASTEIP                  17021
  194. #define IDM_SEPARTOR_17022            17022
  195. #define IDM_MSFONT                    17023
  196. #define IDM_MMFONT                    17024
  197. #define IDM_MLFONT                    17025
  198. #define IDM_SEPARTOR_17026            17026
  199. #define IDM_MSSFONT                   17027
  200. #define IDM_MSMFONT                   17028
  201. #define IDM_MSLFONT                   17029
  202. #define IDM_NOOP                      17031
  203.